runtime.pollDesc.wd (field)
14 uses
runtime (current package)
netpoll.go#L109: wd int64 // write deadline (a nanotime in the future, -1 when expired)
netpoll.go#L157: if pd.wd < 0 {
netpoll.go#L259: pd.wd = 0
netpoll.go#L370: rd0, wd0 := pd.rd, pd.wd
netpoll.go#L384: pd.wd = d
netpoll.go#L387: combo := pd.rd > 0 && pd.rd == pd.wd
netpoll.go#L412: if pd.wd > 0 && !combo {
netpoll.go#L416: resettimer(&pd.wt, pd.wd)
netpoll.go#L418: } else if pd.wd != wd0 || combo != combo0 {
netpoll.go#L420: if pd.wd > 0 && !combo {
netpoll.go#L421: modtimer(&pd.wt, pd.wd, 0, netpollWriteDeadline, pd.makeArg(), pd.wseq)
netpoll.go#L433: if pd.wd < 0 {
netpoll.go#L627: if pd.wd <= 0 || pd.wt.f == nil && !read {
netpoll.go#L630: pd.wd = -1
The pages are generated with Golds v0.6.7. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |